home *** CD-ROM | disk | FTP | other *** search
Text File | 1991-07-01 | 1.8 KB | 58 lines | [TEXT/MPS ] |
- ; File: E16.ADB
- ;
- ;
- ; Copyright Apple Computer, Inc. 1986-90
- ; All Rights Reserved
- ;
- ;
- cmndIncomplete GEQU $0910 ; Command not completed.
- cantSync GEQU $0911 ; Can't synchronize
- adbBusy GEQU $0982 ; Busy (command pending)
- devNotAtAddr GEQU $0983 ; Device not present at address
- srqListFull GEQU $0984 ; List full
- readModes GEQU $000A
- readConfig GEQU $000B
- readADBError GEQU $000C
- readVersionNum GEQU $000D
- readAvailCharSet GEQU $000E
- readAvailLayout GEQU $000F
- abort GEQU $0001
- resetKbd GEQU $0002
- flushKbd GEQU $0003
- setModes GEQU $0004 ; 2nd param is pointer to mode byte
- clearModes GEQU $0005 ; 2nd param is pointer to mode Byte
- setConfig GEQU $0006 ; 2nd param is pointer to SetConfigRec
- synch GEQU $0007 ; 2nd param is pointer to SynchRec
- writeMicroMem GEQU $0008 ; 2nd param is pointer to MicroControlMemRec
- resetSys GEQU $0010
- keyCode GEQU $0011 ; 2nd param is pointer to key code byte.
- resetADB GEQU $0040
- transmitADBBytes GEQU $0047 ; add number of bytes to this
- enableSRQ GEQU $0050 ; ADB address in low nibble
- flushADBDevBuf GEQU $0060 ; ADB address in low nibble
- disableSRQ GEQU $0070 ; ADB address in low nibble
- transmit2ADBBytes GEQU $0080 ; add ADB address to this
- listen GEQU $0080 ; adbCommand = listen + ( 16 * reg) + (adb address)
- talk GEQU $00C0 ; adbCommand = talk + ( 16 * reg) + (adb address)
- readMicroMem GEQU $0009
- ; offset constants for ReadConfigRec
- orcADBAddr GEQU 0
- orcLayoutOrLang GEQU 1
- orcRepeatDelay GEQU 2
- ; offset constants for SetConfigRec
- oscADBAddr GEQU 0
- oscLayoutOrLang GEQU 1
- oscRepeatDelay GEQU 2
- ; offset constants for SynchRec
- osynchMode GEQU 0
- osynchKybdMouseAddr GEQU 1
- osynchLayoutOrLang GEQU 2
- osynchRepeatDelay GEQU 3
- ; offset constants for ScaleRec
- oxDivide GEQU 0
- oyDivide GEQU 2
- oxOffset GEQU 4
- oyOffset GEQU 6
- oxMultiply GEQU 8
- oyMultiply GEQU 10
-